home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Snippets / Toolbox / Password / PasswordPPC.make < prev    next >
Encoding:
Text File  |  1996-09-17  |  1.4 KB  |  54 lines  |  [TEXT/CWIE]

  1. #   File:       PasswordPPC.make
  2. #   Target:     PasswordPPC
  3. #   Sources:    PasswordPPC.r
  4. #               Sample.r
  5. #               Sample.c
  6. #               Password.c
  7. #   Created:    Friday, February 10, 1995 08:04:10 PM
  8.  
  9.  
  10. POWERPCOBJECTS = ∂
  11.         Sample.o ∂
  12.         Password.o ∂
  13.  
  14. 68KOBJECTS = ∂
  15.         Sample.c.o ∂
  16.         Password.c.o ∂
  17.  
  18.  
  19. PasswordPPC  ƒƒ PasswordPPC.make PasswordPPC.r
  20.     Rez PasswordPPC.r -append -o PasswordPPC
  21. PasswordPPC  ƒƒ PasswordPPC.make Sample.r
  22.     Rez Sample.r -append -o PasswordPPC
  23.  
  24. PasswordPPC ƒƒ PasswordPPC.make  {POWERPCOBJECTS}
  25.     PPCLink  ∂
  26.         {POWERPCOBJECTS} ∂
  27.         "{PPCLibraries}"InterfaceLib.xcoff ∂
  28.         "{PPCLibraries}"MathLib.xcoff ∂
  29.         "{PPCLibraries}"StdCLib.xcoff ∂
  30.         "{PPCLibraries}"StdCRuntime.o ∂
  31.         "{PPCLibraries}"PPCCRuntime.o ∂
  32.         -main __start ∂
  33.         -o PasswordPPC.xcoff
  34.     makePEF PasswordPPC.xcoff -o PasswordPPC ∂
  35.         -l InterfaceLib.xcoff=InterfaceLib ∂
  36.         -l MathLib.xcoff=MathLib ∂
  37.         -l StdCLib.xcoff=StdCLib ∂
  38.         -ft APPL -fc '????'
  39. Sample.o ƒ PasswordPPC.make Sample.c
  40.      PPCC -w conformance -appleext on  Sample.c -o Sample.o
  41. Password.o ƒ PasswordPPC.make Password.c
  42.      PPCC -w conformance -appleext on  Password.c -o Password.o
  43.  
  44. PasswordPPC ƒƒ PasswordPPC.make  {68KOBJECTS}
  45.     Link -t APPL -c '????' ∂
  46.         {68KOBJECTS} ∂
  47.          "{Libraries}"Runtime.o ∂
  48.          "{Libraries}"Interface.o ∂
  49.         -o PasswordPPC
  50. Sample.c.o ƒ PasswordPPC.make Sample.c
  51.      C -r  Sample.c
  52. Password.c.o ƒ PasswordPPC.make Password.c
  53.      C -r  Password.c
  54.